home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr53 / pctv4n_1.zip / XCOLINFO.H < prev    next >
Text File  |  1993-06-10  |  547b  |  33 lines

  1. /**************************************************
  2. *
  3. * FILE NAME:  xcolinfo.h    TITLE:  column info
  4. *
  5. * AUTHOR:       Ken North
  6. *
  7. * SYNOPSIS:
  8. *      Column (field) information from Netware
  9. *    SQL's XQL Manager (XQLM)
  10. *
  11. **************************************************/
  12.  
  13. #ifndef __XCOLINFO_H
  14. #define __XCOLINFO_H
  15.  
  16.  
  17. typedef struct 
  18.    {
  19.     int     DataType;
  20.     int     Size;
  21.     int     Scale;        /* decimal places */
  22.     int     Width;
  23.     int     NameLen;
  24.     char    ColName [NAMELENGTH];
  25.    } COLUMNS;
  26.  
  27. #endif
  28.  
  29.  
  30.  
  31.  
  32.  
  33.